/* Root */
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
    --primary-color: #2596be;
    --primary-dark: #1e7999;
    --primary-light: #51abcb;
    --secondary-color: #4bb353;
    --secondary-dark: #357d3a;
    --secondary-light: #81ca87;
    --heading: #2596be;
    --p: #717171;
    --h4: #585858;
    --background-gray: #f6f6f6;
}

/* Global */
* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

body{
    font-family: 'Poppins', sans-serif;
}

section {
    margin: 50px 0px;
    padding: 0px 130px;
}

@media only screen and (max-width: 576px) {
    section {
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    section {
        padding: 1em;
    }
}

@media only screen and (max-width: 992px) {
    section {
        padding: 1em;
    }
}
h1, h2, h3, h4, h5, h6, a, div, .btn{
    font-family: 'Poppins', sans-serif;
}

h1,
h2 {
    text-transform: uppercase;
    color: var(--heading) !important;
    font-size: 2rem !important;
    margin-top: 1em;
    display: inline-block;
    padding: 0.5em 0;
    position: relative;
    text-align: center;
}

h3 {
    color: var(--secondary-color);
    text-transform: capitalize;
}

h1:before,
h2:before {
    position: absolute;
    content: '';
    bottom: 0.3em;
    transition: 0.5s;
    border-width: 2px;
    width: 15%;
    border-style: solid;
    border-image: linear-gradient(to right, #2596be, #4bb353) 1;
}

h1:hover::before,
h2:hover::before {
    width: 100%;
}

a {
    text-decoration: none !important;
}

p {
    color: var(--p);
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
}

.size-1{
    font-size: 45px !important;
    font-weight: 600;
}

.size-2{
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

@media only screen and (max-width: 576px) {
    .size-1{
        font-size: 2em !important;
    }
}

@media only screen and (max-width: 768px) {
    .size-1{
        font-size: 2.2em !important;
    }
}

@media only screen and (max-width: 992px) {
    .size-1{
        font-size: 2.4em !important;
    }
}
/* 
.img-center {
    display: flex;
    align-items: center;
} */

.ribbon {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 25px 0 8px;
    background: var(--secondary-color);
    color: #FAFAFA;
    box-sizing: border-box;
}

.img-center {
    display: grid;
    place-content: center;
}

.section-bg {
    background-color: var(--background-gray);
}

.section-bg-secondary {
    background-color: var(--secondary-color);
}

nav .breadcrumb{
    padding: 10px 0 0 10px;
}

/* header */
header .navbar-brand img {
    width: 190px;
}

header .navbar-toggler {
    border: none;
}

header .dropdown {
    position: relative;
    display: inline-block;
}

header .dropdown-menu {
    z-index: 10;
    border: none;
    /* background-color: #ffffff30; */
    background-color: rgb(248, 249, 250, 0.1);
    visibility: hidden;
    transition: all 0.5s ease;
    display: none;
    padding: 0px;
}

@media (max-width: 768px) {
    header .dropdown-menu {
        display: block;
        visibility: visible;
    }
}

header .navbar-collapse ul li{
    list-style-type: none;
    background: #f8f9fa;
}

header .navbar-collapse ul li a {
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
}

header .navbar-nav li a:hover {
    color: rgba(0, 0, 0);
    font-weight: 500;
}

header .navbar-collapse .sub-menu li a::before{
    content: "-";
    position: absolute;
    left: 25px;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
}

header.dropdown-menu {
    border: none !important;
}

.dropdown-item {
    background-color: #f8f9fa !important;
    border-radius: none !important;
}

.dropdown-item:hover {
    background-color: #fff !important;
}

header button a {
    color: white;
    text-decoration: none;
}

header button {
    background-color: var(--primary-color) !important;
    border: none !important;
}

header button:hover {
    background-color: var(--secondary-color) !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#google_translate_element select{
    border: none;
    padding: 3px;
}
/* ---------------------------------------- Carousel ------------------------------------------------------- */
.carousel .carousel-inner .carousel-item .banner{
    position: relative;
    overflow: hidden;
}

.carousel .carousel-inner .carousel-item .banner .text{
    position: absolute;
    left:30%;
    top: 50%;
    transform: translate(-20%, -50%);
    text-align: center;
}

.carousel .carousel-inner .carousel-item .banner .text h2{
    font-size: 50px !important;
    font-weight: 600;
    color: white !important;
    line-height: 1.2em;
    text-transform: capitalize;
}

.carousel .carousel-inner .carousel-item .banner .text h2:before{
    border-style: none;
}

@media (max-width:425px){
    .carousel .carousel-inner .carousel-item .banner .text h2{
        font-size: 15px !important;
    }
}

@media (max-width:768px){
    .carousel .carousel-inner .carousel-item .banner .text h2{
        font-size: 25px !important;
    }
}

.carousel .carousel-inner .carousel-item .banner .text .heading-1 span{
    color: #ffffff;
}

.carousel .carousel-inner .carousel-item .banner .text .heading-2{
    color: #ffffff;
    line-height: 1.5em;
    padding-bottom: 23px;
}


/* ----------------------------------------Index Page------------------------------------------------------- */
.welcome p{
    width: 75%;
}
/* introudction */
.image-container img {
    width: 100%;
}

/* Fact Counter */
.counter-box {
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center;
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2;
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--heading);
    line-height: 28px;
}

.counter-box.colored {
    background: var(--primary-color);
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff;
}

/* vision mission */
/* .vision-mission {
    display: grid;
    place-content: center;
}

.vision-mission p {
    text-align: justify;
}

.vision-mission h3 {
    font-size: 1.25rem;
}

.vision-mission p {
    text-align: justify;
}

.vision-mission .tag {
    border-radius: 6px;
    clip-path: polygon(50px 0px, 100% 0px, 100% 100%, 0% 100%, 0% 50px);
    background: #f6f6f6;
    padding: 16px 40px;
    transition: clip-path 500ms;
    min-height: 395px;
    border: 10px solid white;
}

.vision-mission .tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--color-back);
    border-radius: 0 0 6px 0;
    transition: transform 500ms;
}

.vision-mission .tag:hover {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0% 100%, 0% 0px);
}

.vision-mission .tag:hover::after {
    transform: translate(-100%, -100%);
}

.section-3 .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.section-3 .cards .card{
    padding: 20px;
    margin: 15px;
    width: 290px;
    border-radius: 0;
    border-color: none;
    background: var(--primary-color);
    transition: .4s ease-out;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.section-3 .cards .card:hover{
    box-shadow: inset 400px 0 0 0 var(--secondary-color);
    border: none;
}

.section-3 h2, .section-3 h3{
    color: #fff !important;
}

.section-3 h3{
    font-size: 1.25rem;
}

.section-3 p{
    color: #000 !important;
} */

.vision-mission .service-box {
    margin-top: 30px;
    padding: 20px;
    background: #f6f6f6;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}

.vision-mission .service-icon {
    display: inline-block;
    padding: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    height: 90px;
    width: 90px;
}

.vision-mission .service-icon i {
   font-size: 3em;
   color: #fff;
}

.vision-mission h3.service-heading {
    margin-top: 20px;
    font-weight: 500;
    font-size: 24px;
    background: rgba(50, 33, 83, 0.1);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 10px;
}

.vision-mission h3 {
    margin-bottom: 0;
}

.vision-mission p.service-para {
    margin-top: 20px;
    margin-bottom: 0;
    color: #888;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.vision-mission .service-box:hover {
    transform: translateY(-10px);
}

.vision-mission .service-box:hover  .service-icon{
    background: var(--secondary-color);
}

/* Video Section CSS */
.mb-30 {
    margin-bottom: 30px !important;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.features-section {
    position: relative;
}

.features-section .text {
    margin: 0px 0px 15px;
}

.feature-block {
    position: relative;
}

.feature-block .inner-box {
    position: relative;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 35px 30px 20px;
    padding-left: 130px;
    background-color: #fff;
    border-bottom: 1px solid #dfdfdf;
}

.feature-block:last-child .inner-box {
    border-bottom: 0;
}

.feature-block .icon {
    position: absolute;
    top: 40px;
    left: 40px;
}

.feature-block .inner-box .icon i {
    display: inline-block;
    max-width: 100%;
    height: auto;
    font-size: 50px;
    color: var(--secondary-color);
}

.feature-block h4 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 13px;
    word-wrap: break-word;
}


.feature-video {
    position: relative;
    padding: 50px;
    background-size: cover;
    overflow: hidden;
    min-height: 503px;
}

.feature-video h4 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-video .text {
    position: relative;
    max-width: 310px;
}

.feature-video .shape {
    position: absolute;
    top: -104px;
    left: -94px;
    width: 430px;
    height: 430px;
    transform: rotate(45deg);
    border-radius: 50px;
    background: var(--primary-color);
}

.feature-video .pattern {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
}


.feature-video .video-box {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: right center;
}

.feature-video .video-btn {
    position: relative;
    text-align: center;
}

.feature-video .video-btn div:first-child {
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    color: #212121;
    text-align: center;
    font-size: 24px;
    display: inline-block;
    position: relative;
    background-color: #ffffff;
    padding-left: 5px;
    transition: .5s;
}

.feature-video .video-btn .ripple:before {
    position: absolute;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    content: '';
    border-radius: 50%;
    transition: .7s;
    border: 1px solid #fff;
}

.feature-video .video-btn .ripple:hover:before {
    transform: scale(1.05);
}

.feature-video .video-btn .ripple:after {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.feature-video .video-btn .ripple:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.feature-video .video-btn div i {
    font-size: xxx-large;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.video-container span {
    background-color: #fff;
    padding: 3px;
    border-radius: 104%;
    width: 35px;
    height: 35px;
}

.video-container .close {
    position: absolute;
    top: 5%;
    right: 22%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    color: #000;
    font-weight: bolder;
}

.video-container video {
    min-width: 300px;
    transform: scale(0);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: all 0.3s;
}

.video-container.show {
    pointer-events: all;
    opacity: 1;
}

.video-container.show video {
    transform: scale(1);
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@media only screen and (max-width: 576px) {
    .video-container .close {
        top: 40%;
        right: 9%;
    }
}

@media only screen and (max-width: 450px){
    .feature-block .inner-box{
        padding-left: 30px;
    }
    .feature-block .icon{
        position: initial;
        display: flex;
        justify-content: center;
    }
    .feature-block h4, .features-section .text{
        text-align: center;
    }
}


/* our portfolio */
.portfolio img {
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.grid-wrapper>div {
    display: flex;
    align-items: center;
}

.portfolio-image::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    display: block;
    background: rgba(30, 121, 153, 0.6);
    border-radius: 5px;
}

.our-portfolio-item .portfolio-title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 10px;
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    z-index: 3;
    text-align: center;
    font-weight: 600;
    transition: .2s all linear;
}

.our-portfolio-item:hover .portfolio-title,
.our-portfolio-item:hover:not(:first-child) .portfolio-title {
    text-shadow: 2px 2px 1px black;
}

.grid-wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.centered {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.our-portfolio-item {
    position: relative;
}

.our-portfolio-item .portfolio-content {
    height: 100%;
    width: 100%;
}

.our-portfolio-item:first-child .portfolio-title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    color: gray;
    font-size: 32px;
    text-align: left;
    text-transform: none;
    font-weight: 700;
    padding: 0 0 10px 0;
    margin: 0 0 30px 0;
}

.our-portfolio-item:first-child .portfolio-body p {
    font-size: 16px;
    font-weight: normal;
    color: gray;
}

.portfolio-image {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

/* Standing Strong */
.standing-strong p {
    text-align: justify;
}

/* .standing-strong .main-tab {
    background: linear-gradient(0deg, rgba(255 255 255 / 54%), rgba(37, 150, 190, 0.69)), url(https://www.shutterstock.com/image-photo/white-round-tablets-levitate-on-260nw-1800427243.jpg);
    background-repeat:no-repeat;
    background-size: cover;
} */
.our-business .standing-strong img {
    width: 100%;
}
.standing-strong img {
    width: 100%;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(5, 156, 33, 0.1) 0px 16px 56px;
}

.standing-strong .tab-links {
    margin-bottom: 32px;
}

.standing-strong button {
    position: relative;
    padding: 16px;
    border: none;
    outline: none;
    color: black;
    text-transform: uppercase;
    background: transparent;
}

.standing-strong button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-dark);
    transition: .4s;
}

.standing-strong button:hover::after,
.standing-strong button.active::after {
    width: 100%;
}

.standing-strong .tab-content>section {
    animation: up 1s;
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width:576px) {
    .standing-strong img {
        width: 100%;
    }
}

@media (min-width:769px) {
    .pb-40 {
        padding-bottom: 40px;
    }
}

/* Team CSS */
.dlab-team4 {
    text-align: center;
}

.dlab-box,
.dlab-info {
    position: relative;
}

.dlab-box,
a {
    transition: all 0.8s linear;
}

.m-b30 {
    margin-bottom: 30px;
}

.dlab-team4 .dlab-media {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.dlab-media {
    background-color: #FFF;
}

.dlab-team4 .dlab-media:before,
.dlab-team4 .dlab-media:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 13px solid #e6e5e5;
    position: absolute;
    top: 0;
    left: 0;
}

.dlab-team4 .dlab-media:after {
    border-color: var(--primary-color) #e6e5e5 #e6e5e5 var(--primary-color);
    z-index: 1;
    transform: rotate(-10deg);
    transition: all 0.8s ease 0s;
}

.dlab-team4:hover .dlab-media:after {
    transform: rotate(350deg);
}

.dlab-media a {
    color: #000;
    outline: 0 none;
    text-decoration: none;
}

.dlab-team4 img {
    width: 100%;
    height: auto;
    border-style: none;
    max-width: 100%;
    vertical-align: middle;
}

.dlab-team4 .dlab-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    padding-bottom: 15px;
    margin: 15px 0 10px 0;
    position: relative;
}

.dlab-team4 .dlab-title a {
    color: #232323;
}

.dlab-team4 .dlab-title:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #222;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.dlab-team4 .dlab-position {
    display: block;
    font-size: 16px;
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

/* ----------------------------------------about us------------------------------------------------------- */
.about-us .section-3 .card{
    border: none;
    border-radius: 20px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.about-us .section-3 .card:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.about-us .section-3 .card .card-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us .section-3 .card .card-inner i{
    font-size: 50px;
    color: var(--secondary-color);
    margin-top: 1rem;
    transition: transform 0.3s;
}


.about-us .section-3 .card:hover i{
    transform: translateY(-5px);
}

.about-us .section-3 .card .card-inner p:nth-child(2){
    font-weight: 500;
    font-size: 1.4em;
    color: var(--primary-color);
}

.about-us .section-3 .card .card-inner p:nth-child(3){
    font-size: 1.3em;
}

/* ----------------------------------------core values------------------------------------------------------- */
.core-values .core-value-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.core-values .core-value-cards {
    width: 295px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 28px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.core-values .core-value-cards h3 {
    color: var(--secondary-color);
}

.core-values .review {
    font-size: 15px;
    padding: 20px;
    line-height: 20px;
}

.core-values .core-value-cards:hover {
    background: var(--primary-color);
    color: white;
    border: 5px solid white;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.core-values .core-value-cards:hover p,
.core-values .core-value-cards:hover h3 {
    color: #fff;
}

/* ----------------------------------------Our Therapies------------------------------------------------------- */
.therapy-section section{
    display: block;
}

.therapy-section h4{
    color: var(--secondary-color);
}

.vc_section.vc_section-has-fill, .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section, .vc_section.vc_section-has-fill+.vc_section{
    padding-top: 35px;
}
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner, .vc_section.vc_section-has-fill{
    padding-top: 0;
}
.vc_section.vc_section_visible{
    position:relative;
}
.vc_section[data-vc-full-width]{
    transition: opacity .5s ease;
}
.vc_row_visible, .vc_section_visible {
    overflow: visible!important;
}
.vc_section {
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    margin-left: -15px;
    margin-right: -15px;
}
.vc_section[data-vc-full-width]>.vc_row{
    margin-left: 0;
    margin-right: 0;
}
.vc_row{
    display: flex;
}
.vc_row {
    flex-wrap: wrap !important;
}
.vc_row_visible, .vc_section_visible {
    overflow: visible!important;
}
.vc_row {
    position: relative;
}
.vc_row:after, .vc_row:before{
    content: " ";
    display: table;
}
.wpb_column.vc_column_container {
    z-index: 30;
}
.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}

.vc_col-sm-12{
    position: relative;
    min-height: 1px;
    box-sizing: border-box;
}
.text-left {
    text-align: left!important;
}
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.vc_column-inner {
    background-size: cover !important;
}
.vc_column-inner, .wpb_wrapper {
    position: relative;
}
.vc_column-inner::after, .vc_column-inner::before{
    content: " ";
    display: table;
}

.mb-5, .my-5{
    margin-bottom:3rem!important;
}

.pix-content-stack{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}
.pix-content-stack:nth-of-type(odd) .img-el{
    max-width: 50% !important;
    flex: 0 0 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.pix-content-stack:nth-of-type(even) .img-el{
    margin-left: 50% !important;
    position: absolute;
}
.pix-content-stack .img-el{
    width: 55% !important;
    flex: 0 0 50%;
}
.pix-content-stack .img-el{
    width: 75%;
    height: auto;
}
.animating{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: cubic-bezier(cubic-bezier(0.165, 0.84, 0.44, 1));
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animating{
    transition: none !important;
    -webkit-transition: none !important;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.pix-content-stack:nth-of-type(odd) .content-el{
    max-width: 55% !important;
    flex: 0 0 55%;
    position: relative;
    margin-left: 45%;
    margin-top: 55px !important;
}
.pix-content-stack:nth-of-type(even) .content-el{
    max-width: 55% !important;
    flex: 0 0 55%;
    position: relative;
    margin-top: 55px !important;
}

.pix-content-stack .content-el{
    max-width: 60% !important;
    flex: 0 0 60%;
}
.pix-content-stack.pix-left-content .content-el{
    left: 0;
}
.pix-content-stack .content-el{
    width: 50% !important;
    top: 5% !important;
}
.pix-content-stack .content-el{
    -webkit-transition:all 0.4s cubic-bezier(.165,.84,.44,1);
    transition: all 0.4s cubic-bezier(.165,.84,.44,1);
    position: absolute;
    width: 45%;
    right: 0;
    top: 10%;
}
.pix-content-stack .content-el .content-el-inner{
    padding: 0 !important;
}
.pix-content-stack .content-el .content-el-inner{
    -webkit-transition: all 0.4s cubic-bezier(cubic-bezier(0.165, 0.84, 0.44, 1));
    transition: all 0.4s cubic-bezier(cubic-bezier(0.165, 0.84, 0.44, 1));
    min-height: 50px;
    display: inline-block;
    width: 100%;
}
.fly{
    transition: all 0.4s cubic-bezier(cubic-bezier(0.165, 0.84, 0.44, 1));
    -webkit-transition: all 0.4s cubic-bezier(cubic-bezier(0.165, 0.84, 0.44, 1));
}
.pix-p-20{
    padding: 20px !important;
}
.pix-content-stack .content-el .content-el-inner{
    padding: 0 !important;
}
.pix-content-stack .content-el .content-el-inner{
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 50px;
    display: inline-block;
    width: 100%;
}
.pix-content-stack .content-el .content-el-inner .card{
    border-radius: 10px !important;
}
.pix-content-box.card{
    overflow: hidden;
}
.pix-content-box.card{
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 5px;
    -webkit-transition: all 0.4s cubic-bezier(.165,.84,.44,1);
    transition: all 0.4s cubic-bezier(.165,.84,.44,1);
    z-index: 0;
}
.shadow-sm{
    box-shadow: 0 1px 5px 0 rgba(0,0,0,.15)!important;
}
.shadow-sm{
    -webkit-transition: all 0.4s cubic-bezier(.165,.84,.44,1);
    transition: all 0.4s cubic-bezier(.165,.84,.44,1);
}
.card.shadow-sm{
    box-shadow:0 0 20px 0px rgba(0, 0, 0, 0.15) !important;
}
.w-100 {
    width: 100%!important;
}

.card:not(.sticky-top) {
    position: relative!important;
}
.vc_custom_1615991829595{
    padding-top: 65px !important;
    padding-right: 65px !important;
    padding-bottom: 65px !important;
    padding-left: 65px !important;
    background-color: #ffffff !important;
}
.pix-content-stack .content-el .content-el-inner .wpb_content_element {
    margin-bottom: 0 !important;
}
.wpb_content_element{
    margin-bottom: 35px;
}
#content .wpb_text_column :last-child, .wpb_text_column :last-child{
    margin-bottom: 0;
}

.pix-content-stack .content-el .content-el-inner h2{
    font-size: 34px !important;
    line-height: 34px !important;
    color: #2A357E !important;
    font-weight: 700 !important;
}
#content a.btn {
    -webkit-border-radius: 13px !important;
    -ms-border-radius: 13px !important;
    -o-border-radius: 13px !important;
    border-radius: 13px !important;
    -moz-border-radius: 13px !important;
    font-size: 1rem !important;
    padding: 13px 2rem !important;
    line-height: 1rem;
    font-weight: 400px !important;
}
.pix-content-stack.btn:not(:disabled):not(.disabled){
    cursor: pointer;
}
.pix-content-stack.btn-primary{
    color: #fff;
    background-color: #00ae4d;
    border-color: #00ae4d;
    box-shadow: none;
    text-shadow: 0;
}
.pix-content-stack.btn{
    display: inline-block;
    font-weight: 400;
    color: #adb5bd;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0rem solid transparent;
    margin-right: 10px;
    padding: 0.5625rem 1.125rem;
    font-size: .875rem;
    line-height: 1.8;
    border-radius: 4px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.pix-hover-item .pix-hover-left{
    -webkit-transition: padding 0.4s cubic-bezier(.165,.84,.44,1);
    transition: padding 0.4s cubic-bezier(.165,.84,.44,1);
    position: relative;
    display: inline-block;
    padding-left: 0;
    font-size: 25px;
}

.pix-content-box a{
padding: 0px 10px;
margin-top: 10px;
}

.pix-content-box .btn i{
    position: relative;
    vertical-align: middle!important;
    line-height: 1.8;
    top: -0.0625rem;
    position: relative;
}
.font-weight-bold {
    font-weight: 700;
}
.font-weight-bold{
    font-weight: 700!important;
}
[class*=" pixicon-"]{
    font-family: 'pixicon'!important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mr-1, .mx-1 {
    margin-right: 0.25rem!important;
}
.pixicon-angle-right:before {
    content: "\f12b";
}
#content a.btn span {
    font-weight: 400 !important;
    display: inline-block !important;
}
.vc_section.card:after {
    content: "";
    border-radius: 5px;
    position: absolute;
    z-index: -1!important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(.165,.84,.44,1);
    transition: all 0.4s cubic-bezier(.165,.84,.44,1);
}
.vc_custom_1615991864616 {
    padding-top: 65px !important;
    padding-right: 65px !important;
    padding-bottom: 65px !important;
    padding-left: 65px !important;
    background-color: #ffffff !important;
}
.fly:hover{
    transform: translate(0,-6px)!important;
}

@media screen and (min-width: 768px) {
    .vc_col-sm-12 {
        width: 100%;
        float: left;
    }
}

@media screen and (max-width: 768px) {
    .wpb_column.vc_column_container:not(.vc_hidden-sm):not(.vc_hidden-xs) {
        display: inline-block!important;
    }
    
}

@media (max-width:860px){
    .pix-content-stack:nth-of-type(odd) .img-el, .pix-content-stack:nth-of-type(odd) .content-el, .pix-content-stack:nth-of-type(even) .img-el, .pix-content-stack:nth-of-type(even) .content-el{
    max-width: 100% !important;
    flex: 0 0 100%;
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: relative;
    }
}

@media (max-width:990px){
    .pix-content-stack.pix-left-content .img-el, .pix-content-stack .img-el{
        width: 100% !important;
    height: auto;
    margin-left: 0 !important;
    }
}

/* ----------------------------------------Respiratory------------------------------------------------------- */
.therapeutic-categories{
    padding-bottom: 28px;
    background: linear-gradient(to top, rgb(75,179,83) 50%, rgb(0,0,0,0) 50%);
}

.respiratory h4{
    color: var(--secondary-color);
}

.therapeutic-categories h3{
    padding: 10px 0;
}

.therapeutic-categories img{
    border-radius: 0px 100px / 0px 100px;
    border: 10px solid var(--secondary-color);
}

.sub-resp div{
    position: relative;
}

.sub-resp div span h5{
    position: absolute;
	bottom: -20px;
	left: 0;
	z-index: 99;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
	text-decoration: none;
	text-align: center;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}

.therapeutic-categories figure {
	overflow: hidden;
    border-radius: 0px 100px / 0px 100px;
}

.therapeutic-categories figure:hover span h5 {
	bottom: -20px;
	opacity: 1;
}

.zoom-in figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.zoom-in figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);

}

@media screen and (max-width: 768px){
    .therapeutic-categories{
        background: rgb(75,179,83);
        padding-bottom: 0px;
    }
    .therapeutic-categories h3{
        color: #FFF;
    }
    .sub-resp div span h5{        
	    opacity: 1;
    }
    .col-sm-12{
        margin-bottom: 40px;
    }
}

/* Asthma */

.voh h3{
    color: #fff;
}

.voh .card{
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  margin-top:10px;
  margin-bottom:10px;
  background-color:#FFF;
  padding: 10px;
}

.voh .card:hover {
  box-shadow: 0 5px 5px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.voh .card .card-content{
    padding:10px;
}

.voh .card img{
    width:100%;
  }


/* ----------------------------------------media------------------------------------------------------- */


.media {
    display: flex;
}

.snip1369 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    background: #20638f;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.snip1369 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.snip1369>img,
.snip1369 .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    max-width: 100%;
}

.snip1369>img {
    vertical-align: top;
    position: relative;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0.6;
}

.snip1369 figcaption,
.snip1369 .image {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.snip1369 .image {
    position: absolute;
    top: 0;
    bottom: 25%;
    right: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1), 0px 1px 0 rgba(255, 255, 255, 0.2);
}

.snip1369 .image img {
    position: absolute;
    top: 0;
}

.snip1369 figcaption {
    position: absolute;
    top: 75%;
    bottom: 46px;
    left: 20px;
    right: 20px;
    border-bottom: 2px solid #ffffff;
    padding-top: 20px;
    z-index: 1;
}

.snip1369 h3,
.snip1369 p {
    margin: 0;
}

.snip1369 h3 {
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.snip1369 p {
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 0;
}

.snip1369 .read-more {
    display: block;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 20px;
    color: #ffffff;
    right: 0;
    bottom: 0;
    font-weight: 500;
    position: absolute;
}

.snip1369 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.snip1369:hover .read-more,
.snip1369.hover .read-more,
.snip1369:hover figcaption,
.snip1369.hover figcaption {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.snip1369:hover figcaption,
.snip1369.hover figcaption,
.snip1369:hover .image,
.snip1369.hover .image {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.snip1369:hover figcaption,
.snip1369.hover figcaption {
    top: 50%;
}

.snip1369:hover .image,
.snip1369.hover .image {
    bottom: 50%;
}

.snip1369:hover p,
.snip1369.hover p {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* ----------------------------------------CSR------------------------------------------------------- */
.csr .masonry {
    /* Masonry container */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    margin: 1.5em;
    padding: 0;
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    column-gap: 1.5em;
    font-size: .85em;
}

.csr .item {
    display: inline-block;
    background: #fff;
    padding: 1em;
    margin: 0 0 1.5em;
    width: 100%;
    transition: 1s ease all;
    -webkit-transition: 1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}

.csr .item img {
    max-width: 100%;
}

.csr .item .card {
    border: none;
}

@media only screen and (max-width: 768px) {
    .csr .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

/* ----------------------------------------Formulation------------------------------------------------------- */
.process-cards .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.process-cards .container .card {
    position: relative;
    width: 300px;
    height: 450px;
    background-color: var(--clr);
    border-radius: 20px;
    border-top-left-radius: 70px;
    overflow: hidden;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.process-cards .container .card .box {
    position: absolute;
    inset: 10px;
    background: #282828;
    border-radius: 10px;
}

.process-cards .container .card .box .icon {
    position: absolute;
    width: 140px;
    height: 140px;
    background-color: var(--clr);
    border-bottom-right-radius: 50%;
    transition: 0.5s;
}

.process-cards .container .card .box .icon::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px 0 5px var(--clr);
}

.process-cards .container .card .box .icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px 0 5px var(--clr);
}

.process-cards .container .card .box .icon .iconbox {
    position: absolute;
    inset: 10px;
    background: #282828;
    border-radius: 50%;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 90px;
}

.process-cards .container .card .box .icon .iconbox ion-icon {
    font-size: 4rem;
    color: var(--clr);
    --ionicon-stroke-width: 35px;
}

.process-cards .container .card .box .content {
    position: absolute;
    top: 150px;
    padding: 20px;
    text-align: center;
}

.process-cards .container .card .box .content h3 {
    color: var(--clr);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.process-cards .container .card .box .content p {
    color: #FAFAFA;
    font-size: 0.95rem;
    opacity: 0.75;
    margin: 0 0 10px;
}

.process-cards .container .card .box .content a {
    background: var(--clr);
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.5s;
}

.process-cards .container .card .box .content a:hover {
    letter-spacing: 0.2rem;
}

@media only screen and (max-width: 1080px) {
    .process-cards .container {
        padding: 2rem 1rem;
    }
}


/* ----------------------------------------r & d locations------------------------------------------------------- */
#parallax-world-of-ugg h2 {
    letter-spacing: 10px;
    text-align: center;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 10;
}

#parallax-world-of-ugg .parallax-one {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(https://www.emcure.com/wp-content/uploads/2021/08/tile1.png);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

#parallax-world-of-ugg .parallax-two {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(https://www.emcure.com/wp-content/uploads/2021/08/tile2.png);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#parallax-world-of-ugg .parallax-three {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(https://www.emcure.com/wp-content/uploads/2021/08/tile5.png);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* ----------------------------------------Board of Directors------------------------------------------------------- */
/* board-of-directors */
.board-of-directors .card {
    border-radius: 0;
    margin-bottom: 60px;
    max-width: 90%;
}

.board-of-directors .card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: none;
}

.board-of-directors .card-body {
    display: flex;
    flex-direction: column;
}

.board-of-directors .card-body h2 {
    padding-bottom: 0px;
}

.board-of-directors .card-body h2::before,
.card-body h2::after {
    display: none;
}

.board-of-directors .card-body .card-title {
    text-align: left;
}

.board-of-directors .card-body h3 {
    color: var(--secondary-color);
}

.board-of-directors .card:nth-child(odd) {
    left: 10%;
}

.board-of-directors .card img {
    width: 100%;
}

.board-of-directors .card .card-body {
    padding: 0 50px;
}

@media only screen and (max-width: 768px) {
    .board-of-directors .card {
        max-width: 100%;
    }

    .board-of-directors .card:nth-child(odd) {
        left: 0;

    }

    .board-of-directors .card .bod-mobile {
        display: flex;
        flex-wrap: wrap-reverse;
    }
}

/* ----------------------------------------sustainability------------------------------------------------------- */
/* sustainability cards start */

.sustainability-card{
    padding: 0;
}

/*  .sustainability-card .container .card{
    border: none;
    margin-bottom: 20px;
}

.sustainability-card .container .card .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sustainability-card .container .card .icon img {
    height: 100%;
    width: 100%;
}

.sustainability-card .container .card .slide {
    width: 350px;
    height: 310px;
    transition: 0.5s;
}

.sustainability-card .container .card .slide.slide1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: .7s;
    transform: translateY(0px);
}

.sustainability-card .container .card:hover .slide.slide1 {
    transform: translateY(0px);
}

.sustainability-card .container .card .slide.slide2 {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: .8s;
    transform: translateY(-310px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sustainability-card .container .card:hover .slide.slide2 {
    transform: translateY(0);
}

.sustainability-card .container .card .slide.slide2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    bottom: 15px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
}

.sustainability-card .container .card .slide.slide2 .content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--p);
}

.sustainability-card .container .card .slide.slide2 .content h3 {
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
    color: var(--secondary-color);
} */

/* sustainability cards end */

/* Sustainability card flip start */
.sustainability-card .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.flip-container {
    /* perspective: 1000px; */
    transform-style: preserve-3d;
}

.flip-container:hover .back {
    transform: rotateY(0deg);
}

.flip-container:hover .front {
    transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
    width: 300px;
    height: 300px;
    margin: 10px;
}

.front img {
    height: 100%;
    width: 100%;
}

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */
.front,
.back {
    backface-visibility: hidden;
    transition: 0.3s;
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    left: 0;
}

.front {
    z-index: 2;
    transform: rotateY(0deg);
    display: grid;
    place-content: center;
    text-align: center;
    color: black;
}

.front h3 {
    background-color: rgba(246, 246, 246, 0.5);
    padding: 5px;
}

.back {
    transform: rotateY(-180deg);
    background: var(--background-gray);
    color: #000;
    text-align: center;
    line-height: 1.4em;
    padding: 10px;
    display: grid;
    place-content: center;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.vertical.flip-container {
    position: relative;
}

.vertical .back {
    transform: rotateX(180deg);
}

.vertical.flip-container:hover .back {
    transform: rotateX(0deg);
}

.vertical.flip-container:hover .front {
    transform: rotateX(180deg);
}

/* Sustainability card flip end */


/* ----------------------------------------quality------------------------------------------------------- */

.quality .main-section {
    padding: 0;
}

.quality h4 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
}

.quality p {
    padding-top: 10px;
}

.quality p b {
    text-decoration: underline;
}

@media (max-width: 576px){
    .order-sm-2 {
        order: 2!important;
    }
}

/* ----------------------------------------Code of Conduct------------------------------------------------------- */
.coc .conduct-block {
    -webkit-box-shadow: 0px 0px 100px 0px rgba(81, 81, 81, 0.1);
    box-shadow: 0px 0px 100px 0px rgba(81, 81, 81, 0.1);
    background: #ffffff;
    padding: 1px 30px 40px;
}
.coc .conduct-block h3{
    margin-top: 30px;
    margin-bottom: 20px;
}
.coc .conduct-block h3 span {
    background: var(--primary-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    margin-right: 15px;
}

/* ----------------------------------------Committees of Board------------------------------------------------------- */
.accordion-heading .accordion-button {
    cursor: default;
}
.accordion-heading .accordion-button::after {
    width:0;
}
.accordion-item .accordion-button:focus {
    box-shadow: none;
}
.accordion-heading .accordion-button:not(.collapsed){
    background-color:var(--primary-color);
    color:#fff;
}

/* ----------------------------------------our story------------------------------------------------------- */
.our-story .card .card-body p {
    padding: 10%;
}

.our-story .card {
    margin: 5% 0;
    border: none;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, .1);
}

.our-story p i {
    color: var(--secondary-color);
}

.our-story p:hover i {
    color: var(--secondary-dark);
}

/* ----------------------------------------Career------------------------------------------------------- */
/* .career-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(https://www.webhopers.com/wp-content/uploads/2019/10/MAKE-YOUR-BUSINESS-Background.jpg);
    background-size: cover;
} */

.career-form .container {
    width: 100%;
    max-width: 650px;
    /* background: rgba(0, 0, 0, 0.1); */
    background-color: var(--background-gray);
    padding: 28px;
    margin: 0 28px;
    border-radius: 10px;
    box-shadow: inset -2px 2px 2px white;
}

.form-title {
    text-align: center;
    padding-bottom: 6px;
    /* text-shadow: 2px 2px 2px black; */
    border-bottom: solid 1px rgba(0, 0, 0, 0.5);
}

.main-user-info {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    justify-content: center;
}

.user-input-box:nth-child(2n) {
    justify-content: end;
}

.user-input-box {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    padding-bottom: 15px;
}

.user-input-box label {
    width: 95%;
    color: var(--p);
    margin: 5px 0;
}

.user-input-box input {
    height: 40px;
    width: 95%;
    /* border-radius: 7px; */
    outline: none;
    border: 1px solid grey;
    padding: 0 10px;
    justify-content: center;
}

.form-submit-btn input {
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    color: rgb(255, 255, 255);
    background: var(--primary-light);
}

.form-submit-btn input:hover {
    background: var(--primary-dark);
    color: rgb(255, 255, 255);
}

.form-submit-btn {
    margin-top: 40px;
    transition: all 0.3s ease;
}

.career-form .main-user-info .file-input {
    height: 40px;
}

.career-form .main-user-info .file-input label {
    color: var(--p);
}

.career-form .main-user-info .file-input input {
    outline: none;
    border: 1px solid grey;
    border-radius: 0;
    color: var(--p);
}

.career-form .main-user-info .form-control-lg {
    font-size: inherit !important;
}

@media(max-width: 600px) {
    .container {
        min-width: 280px;
    }

    .user-input-box {
        margin-bottom: 12px;
        width: 100%;
    }

    .user-input-box:nth-child(2n) {
        justify-content: space-between;
    }
}

.Work-Life-Balance,
.work-culture {
    background-color: var(--background-gray);
}

.Work-Life-Balance-Content,
.work-culture-content {
    display: grid;
    place-content: center;
    text-align: center;
}

/* ----------------------------------------Media Center------------------------------------------------------- */
.media h3 {
    text-align: center;
}

/* ----------------------------------------Contact Page------------------------------------------------------- */
.contact .container {
    width: 85%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact .container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact .container .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}

.contact .content .left-side::before {
    content: '';
    position: absolute;
    height: 90%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}

.contact .content .left-side .details {
    margin: 14px;
    text-align: center;
}

.contact .content .left-side .details i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact .content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}

.contact .content .left-side .details .text-one,
.contact .content .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
}

.contact .container .content .right-side {
    width: 75%;
    margin-left: 75px;
}

.contact .content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact .right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.contact .right-side .input-box input,
.contact .right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}

.contact .right-side .message-box {
    min-height: 110px;
}

.contact .right-side .input-box textarea {
    padding-top: 6px;
}

.contact .right-side .button {
    display: inline-block;
    margin-top: 12px;
}

.contact .right-side .button input[type="submit"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .button input[type="submit"]:hover {
    background: var(--primary-dark);
}

@media (max-width: 950px) {
    /* .contact .container {
        width: 90%;
        padding: 30px 40px 40px 35px;
    } */

    .contact .container .content .right-side {
        width: 75%;
        margin-left: 55px;
    }
}

@media (max-width: 820px) {
    /* .contact .container {
        margin: 40px 0;
        height: 100%;
    } */

    .contact .container .content {
        flex-direction: column-reverse;
    }

    .contact .container .content .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact .container .content .left-side::before {
        display: none;
    }

    .contact .container .content .right-side {
        width: 100%;
        margin-left: 0;
    }
}

/* ----------------------------------------footer------------------------------------------------------- */
/* Download Brochure CSS */
.footer-area-top {
    background-color: var(--primary-color);
    margin: 0 auto;
    padding: 25px 0;
}

.footer-area-top .inner {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.footer-area-top .inner:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.footer-area-top .at-callOutBox {
    position: relative;
    display: block;
}

.footer-area-top .at-callOutBox::after,
.at-callOutBox::before {
    clear: both;
    display: block;
    content: '';
}

.footer-area-top .at-callOut_inner {
    display: table;
    width: 100%;
    margin: 0 auto;
    max-width: 1160px;
}

.footer-area-top .at-callOut_action {
    display: table;
    position: relative;
    overflow: visible;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    zoom: 1;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.footer-area-top .at-callOut_text {
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;
    box-sizing: border-box;
}

.footer-area-top h3 {
    font-size: 2rem !important;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 100%;
    margin-bottom: 0;
}

.footer-area-top a {
    transition: all 200ms linear;
    outline: 0;
    opacity: 0.6;
}

.footer-area-top .btn.large {
    font-weight: bolder;
}

.footer-area-top .at-callOutBox .btn {
    line-height: 100%;
}

.footer-area-top .btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    vertical-align: bottom;
    outline: none;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: all .6s ease;
}

.footer-area-top .btn:hover {
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
    background-color: #fff;
    opacity: 1;
}

.footer-area-top .large .btn-text {
    padding: 15px 22px;
}

.footer-area-top .btn-text {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.at-callOut_text,
.at-callOut_btn {
    display: grid;
    place-content: center;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .inner {
        width: 100%;
    }
}

/* 25. Footer CSS */
/*----------------------------------------*/
.footer-section {
    background: #010717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-section a {
    text-decoration: none;
    color: inherit;
}

.footer-section ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-widget-about {
    margin-top: 15px;
}

.footer-widget-about a {
    transition: all 0.3s linear;
    outline: 0;
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
  }

  .footer-widget-about p {
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    padding-right: 110px;
    margin-top: 20px;
}

@media only screen and (max-width: 1399px) {
    .footer-widget-about p {
        padding-right: 0;
    }
}

.footer-logo {
    max-width: 170px;
}

.footer-social ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-social .social {
    margin-top: 25px;
}

.footer-social .social li {
    display: inline-block;
}

.footer-social .social li+li {
    margin-left: 5px;
}

.footer-social .social li a {
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    background: #ffffff;
    color: var(--primary-color);
    transition: all 0.3s linear;
    outline: 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.footer-social .social li a:hover {
    color: var(--primary-color);
}

.footer-widget {
    margin-top: 30px;
}

.footer-widget .footer-widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

.footer-copyright-area {
    border-top: 1px solid #1b202f;
    padding-top: 15px;
    padding-bottom: 30px;
}

.widget-link {
    padding-top: 5px;
}

.widget-link .link li {
    margin-top: 7px;
}

.widget-link .link li a {
    font-size: 14px;
    color: #c4c5c7;
    transition: all 0.3s linear;
    text-transform: capitalize;
}

.widget-link .link li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.widget-info {
    padding-top: 20px;
}

.widget-info ul li {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.widget-info ul li .info-icon i {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}

.widget-info ul li .info-text {
    font-size: 16px;
    line-height: 20px;
    color: #c4c5c7;
}

.footer-widget-wrap {
    padding-top: 70px;
    padding-bottom: 75px;
}

.copyright-text {
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .copyright-text {
        text-align: center;
    }
  }

  .copyright-text p {
    font-size: 14px;
    color: #c4c5c7;
  }

  /*  */
  #cardbody body{
    display:flex;
    justify-content:center;
    height: 100vh;
    align-items:center;
  }

  #cardbody img {
    height: 400px;
    width: 250px;
    border-radius: 5px;
    transition: .5s;
  }
  #cardbody .gallery{
    display: flex;
  }
  #cardbody .card{
    height: 380px;
    margin: 50px;
    box-shadow: 5px 5px 20px black;
    overflow:hidden;
    position: relative;
  }
  #cardbody .description{
    height:60px;
    width: 250px;
    padding:6px;
    box-sizing: border-box;
    position:absolute;
    bottom:10px;
    color:#FFF;
    transition: .5s;
  }

  #cardbody  h4{
    margin:10px;
    font-size: 20px;

  }
  #cardbody p{
    font-size: 14px;
    margin:10px;
    visibility:hidden;
    opacity: 0;
    color: #fff;
  }
  #cardbody a{
    text-decoration: none;
    color: #fff;
  }

  #cardbody .card:hover{
    cursor:pointer;
  }

  #cardbody .card:hover .description{
    height:200px;
    bottom:-4px;
    background:#357d3a;
  }

  #cardbody .card:hover p{
    opacity:1;
    visibility: visible;
  }
  #cardbody .card:hover img{
    transform:scale(1.1);
  }